home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / opus / wink_101.zip / WINK_CFG.DOC next >
Text File  |  1992-11-11  |  4KB  |  158 lines

  1. #################################################################
  2. ##
  3. ##  Copyright 1992 by Keith Ford
  4. ##
  5. ##  This is the CFG file for WINK 1.0.0 ;-)
  6. ##
  7. ##  Micro Magic, 205-830-2362 (HST/V32)
  8. ##  203 Creek Trail, Madison, Al 35758
  9. ##  Fidonet 1:373/12
  10. ##  Internet sysop@umagic.fidonet.org
  11. ##
  12. #################################################################
  13.  
  14.  
  15.  
  16. #################################################################
  17. ##
  18. ##  The format is:  VARIABLE [separator] VALUE
  19. ##  Where separator can be tabs, spaces, or an equal sign.
  20. ##
  21. ##  VALUE must be one word, no spaces.
  22. ##
  23. ##  The current VARIABLE list contains:
  24. ##  bbsid, newfiles, news, logon, logoff, 
  25. ##  phone, location, striphighasc, striptag
  26. ##
  27. ##  The following VARIABLE will be added in the future.
  28. ##  bulletins
  29. ##
  30. #################################################################
  31.  
  32.  
  33. ##  BBSID - up to 8 alphnumeric charaters to uniquely identify
  34. ##  this bbs (*** REQUIRED ***)
  35.  
  36. bbsid = umagic
  37.  
  38.  
  39. ##  LOCATION - City, ST
  40.  
  41. location = Madison, AL
  42.  
  43.  
  44. ##  PHONE - telephone number of this bbs
  45.  
  46. phone = (205) 895-0751
  47.  
  48.  
  49. ##  LOGON - if specified, this file is sent to the user and is typically
  50. ##  displayed when the user starts his/her QWK mail reader, it can contain
  51. ##  a welcome or greeting from your bbs
  52.  
  53. logon = x:\logon.txt
  54.  
  55.  
  56. ##  LOGOFF - if specified, this file is sent to the user and is typically
  57. ##  displayed when the user exits from his/her QWK mail reader, it can
  58. ##  contain a goodbye message from your bbs
  59.  
  60. logoff = x:\logoff.txt
  61.  
  62.  
  63. ##  NEWS - if specified, this file is sent to the user and is typically
  64. ##  made available as a menu option within the users QWK mail reader, it
  65. ##  can contain special announcements from your bbs
  66.  
  67. news = x:\news.txt
  68.  
  69.  
  70. ##  NEWFILES - if specified, this file is sent to the user and is
  71. ##  typically made available as a menu option within the users QWK mail
  72. ##  reader, it can contain a list of newly available files since the users
  73. ##  last visit
  74. ##
  75. ##  >>>  It MUST be named 'NEWFILES.DAT'  <<<
  76.  
  77. newfiles = x:\newfiles.dat
  78.  
  79.  
  80. ##  STRIPHIGHASC - strip high-bit from text of uploaded messages
  81. ##                 the default is YES
  82.  
  83. striphighasc YES
  84.  
  85.  
  86. ##  STRIPTAG - strip tag lines from uploaded messages
  87. ##             the default is YES
  88.  
  89. striptag YES
  90.  
  91.  
  92.  
  93. #################################################################
  94. ##
  95. ##  If any of your packers or protocols are a BATch file,
  96. ##  then you MUST have the COMSPEC environment variable
  97. ##  defined.  This variable should point to the location
  98. ##  of your COMMAND.COM file.  Refer to your DOS manual
  99. ##  for more information.  A typical system would have
  100. ##  the following line in their AUTOEXEC.BAT file.
  101. ##
  102. ##
  103. ##            SET COMSPEC=C:\COMMAND.COM
  104. ##
  105. #################################################################
  106.  
  107. ##  'PACKER'  menu text for file packer
  108. ##  'PACK'    pack command
  109. ##  'UNPACK'  unpack command
  110. ##
  111. ##  Use %1 as archive filename
  112. ##      %2 as filename to pack
  113. ##
  114. ##  For example:   PACKER = PKZIP 1.10
  115. ##                 PACK   = c:\bin\pkzip %1 %2
  116. ##                 UNPACK = c:\bin\pkunzip %1
  117.  
  118. PACKER = PKZIP
  119. PACK   = pkzip %1 %2
  120. UNPACK = pkunzip %1
  121.  
  122. PACKER = LHA
  123. PACK   = lha a -m %1 %2
  124. UNPACK = lha x %1
  125.  
  126. PACKER = ARC
  127. PACK   = arca %1.ARC %2
  128. UNPACK = arce %1
  129.  
  130.  
  131.  
  132. ##  'PROTOCOL'  followed by menu text for transfer protocol
  133. ##  'SEND'      command to download to user
  134. ##  'RECEIVE'   command to upload from user
  135. ##
  136. ##  Use %1 as the file length (valid on send only)
  137. ##      %2 as the baud rate
  138. ##      %3 as port number
  139. ##      %4 as the filename to transfer
  140. ##
  141. ##  NOTE:  %1 is not yet implemented, currently passed as '0' always.
  142. ##
  143. ##  For example:  PROTOCOL = Xmodem
  144. ##                SEND     = dzx port %3 speed %2 handshake both pa12000 sx -c %4
  145. ##                RECEIVE  = dzx port %3 speed %2 handshake both pa12000 rx -c %4
  146.  
  147. PROTOCOL = Xmodem
  148. SEND     = DSZ port %3 speed 19200 handshake both pa12000 sx -c %4
  149. RECEIVE  = DSZ port %3 speed 19200 handshake both pa12000 rx -c %4
  150.  
  151. PROTOCOL = Ymodem
  152. SEND     = DSZ port %3 speed 19200 handshake both pa12000 sx -k %4
  153. RECEIVE  = DSZ port %3 speed 19200 handshake both pa12000 rx -k %4
  154.  
  155. PROTOCOL = Zmodem
  156. SEND     = DSZ port %3 speed 19200 handshake both sz %4
  157. RECEIVE  = DSZ port %3 speed 19200 handshake both rz
  158.